A container for deserializing an OData v4 result and its associated metadata.
public class ODataV4ResultList<T>
[JsonPropertyName("@odata.count")] public string ExpectedItemCount { get; set; }
[JsonPropertyName("value")] public List<T> Items { get; set; }
[JsonPropertyName("@odata.context")] public string MetadataReferenceLink { get; set; }
[JsonPropertyName("@odata.nextLink")] public string NextPageLink { get; set; }